home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Extra 1997 #4
/
Amiga Plus Extra 1997 #4.iso
/
pd
/
grafik
/
video easel
/
camrexx
/
life.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-06-09
|
510b
|
23 lines
/* CAMRexx-script for the "Game of Life" with echo */
MakeAlgorithm:
if plane=0 then
PLANEALGORITHM moore centers
if plane=1 then
PLANEALGORITHM echo center0
return
MakePlane:
if plane=0 then; do
sum8=north+south+west+east+n_west+n_east+s_west+s_east
if center=0 then; do
if sum8=3 then SETPLANE on
else SETPLANE off
end; else; do;
if sum8=2 | sum8=3 then SETPLANE on
else SETPLANE off
end
end;
return